home *** CD-ROM | disk | FTP | other *** search
- * Returns information regarding parameters of
- * the target and its attached peripheral device(s).
-
- @THREAD INQUIRY.LOG
- @NEWALIAS SADD SCSIADD.GRA
- @IMPORT SCSICOM.SCR
- SADD DD_OPEN
-
- * 0=Async mode, 1=Sync mode
- SADD SET MODE=1
-
- * Name for paramblock
- SADD SET LABEL = INQUIRY
-
- * Command completion timeout (Secs)
- * 0=the assigned value is the default set by the driver,
- * -1=the assigned value is infinite.
- SADD SET TIMEOUT=0
-
- SADD SET ENABLE_VITAL_PRODUCT_DATA = 0
-
- SADD SET CODE_PAGE = 0
-
- * allocation length
- * this value should not exceed 255
- SADD SET NUM_BYTES = 255
-
- SADD INQUIRY
-
- SADD DD_CLOSE
-